* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    clear: both;
    overflow: hidden;
}

.banner img {
    width: 100%;
}
.banner video{
    width: 100%;
}
.swiper-pagination {
    bottom: 10px;
    right: 50%;
    width: 200px;
    transform: translateX(50%);
}

.swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #003883;
    margin-right: 10px;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: #fff100;
}

.banner .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #003883;
    border-radius: 100%;
    border: 2px solid #fff;
}

.banner .swiper-pagination-bullet-active {
    background: #fff100;
}

.banner .swiper-slide {
    position: relative;
}

.banner-text {
    position: absolute;
    top: 50%;
    right: 50%;
}

.banner-text a {
    display: inline-block;
    color: #fff;
    padding: 4px 16px;
    background-color: #019be3;
    border-radius: 4px;
}

.bannernum {
    position: absolute;
    bottom: 6%;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
}

.bannernums {
    float: left;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.2);
    margin-right: 5px;
    transition: all 3s;
cursor: pointer;
}

.bannernums span:first-child {
    padding: 4px;
    border-radius: 100%;
}

.bannernums span:last-child {
    width: 0;
    height: 1px;
    background: #fff;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: -7px;
    transition: all 3s;
}

.bannernums.active {
    color: rgba(255, 255, 255, 1);
}

.bannernums.active span {
    width: 51px;
}

.head {
    width: 100%;
    height: 176px;
    background: url(../image/hbg.png) center no-repeat;
    padding-top: 30px;
}


/* 通用头部 */

.index_head {
    width: 100%;
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    transition: all 0.65s;
background-color: #fff;
}

.index_heads {
    max-width: 1540px;
    margin: auto;
}

.index_head1 {
    overflow: hidden;
}

.index_head1_logo {
    float: left;
    margin-top: 25px;
}

.index_head1_nav {
    float: right;
    cursor: pointer;
}

.index_head2 {
    width: 100%;
    padding: 0 20px;
    border-radius: 10px;
    opacity: 1;
    transition: all 0.65s;
    height: 80px;

}

.index_head2_logo {
    float: left;
    height: 80px;
    line-height: 80px;
}

.index_head2_language {
    float: right;
    height: 80px;
    line-height: 80px;
}

.index_head2_language a {
    font-size: 20px;
    color: #000;
}

.index_head2_search {
    display: flex;
    align-items: center;
    float: right;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    color: #000;
    margin-right: 5px;
    cursor: pointer;
    margin-left: 30px;
}

.index_head2_search img {
    margin-right: 10px;
    margin-top: -3px;
}

.mobile-inner-header {
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    z-index: 99999;
    top: 0;
   /* background: url(../image/hbg.png) center no-repeat;*/
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 30px;
    height: 2px;
       background-color: rgb(19 28 185);
}

/*.mobile-inner-header img {
    height: 65%;
}*/

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background: #1e69ac;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999999999999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(255, 255, 255, 0.4);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.search-box {
    width: 28%;
    position: fixed;
    right: 0;
    top: 85px;
    display: none;
    z-index: 9999;
    background: rgba(255, 255, 255, 1);
    padding: 18px 2%;
}

.search-box .close {
    float: right;
    width: 35px;
    height: 35px;
    background: url(../image/wel26.png) no-repeat center;
    background-size: 100%;
    margin-top: 2px;
    opacity: 1;
}

.search-box form {
    width: 76%;
    height: 40px;
    line-height: 40px;
    position: relative;
    border: 1px solid rgba(51, 51, 51, 1);
}

.search-box form .text {
    font-size: 12px;
    border: none;
    background: none;
    padding: 0 28px 0 18px;
    width: 100%;
    height: 40px;
    color: #333;
    line-height: 40px;
    outline: none;
}

.search-box form .submit {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -15px;
    background: url(../image/indexsearch.png) no-repeat center;
    border: none;
}

.search-box form .text::-webkit-input-placeholder {
    color: #333;
}

.search-box form .text:-moz-placeholder {
    color: #333;
}

.search-box form .text::-moz-placeholder {
    color: #333;
}

.search-box form .text:-ms-input-placeholder {
    color: #333;
}

.index_head2_nav {
    float: right;
    margin-right: 25px;
}

.index_head2_nav ul {
    margin-bottom: 0;
}

.index_head2_nav ul li {
    float: left;
    height: 80px;
    line-height: 80px;
    padding: 0 20px;
}

.index_head2_nav ul li a {
    display: block;
    font-size: 20px;
    color: #000;
}

.banner {
    margin-top: 80px;
}

.banner2 {
    margin-top: 0px;
}

.banner2 img {
    width: 100%;
}


/* 通用底部 */

.foot {
    width: 100%;
    overflow: hidden;
    background-color: #000;
    padding-top: 40px;
}

.foots {
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    flex-wrap: wrap;
}

.foot-to-top {
    position: absolute;
    right: 5%;
    bottom: 10%;
    cursor: pointer;
}

.copy {
    width: 100%;
    margin-top: 45px;
    line-height: 75px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.fnav {
    float: left;
    /* margin-left: 6.5%; */
}

.ftitle {
    font-size: 15px;
    color: #fff;
    margin-bottom: 13px;
}

.ftitle2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 13px;
}

.flist a {
    display: block;
    font-size: 15px;
    color: #666666;
    margin-top: 13px;
}

.saoma {
    float: left;
    text-align: center;
    /* margin-left: 6.5%; */
}

.sm {
    margin-bottom: 5px;
}

.foot-saoma {
    font-size: 16px;
    text-align: left;
}

.foot-saoma span {
    font-size: 30px;
}

.sm p {
    font-size: 10px;
    color: #fff;
    margin-top: 10px;
}

.copy a {
    font-size: 16px;
    color: #fff;
    margin: 0 10px;
}


/* 通用标题 */

.title {
    width: 100%;
    text-align: center;
    font-size: 36px;
    line-height: 80px;
    font-weight: bold;
    color: #000;
}

.title span {
    color: #045899;
}

.title-sub {
    text-align: center;
    font-size: 23px;
    color: #000;
    padding-top: 20px;
}


/* 通用flex布局 */

.flex-3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-3-item {
    width: 32.5%;
}

.flex-2-item {
    width: 49.5%;
}

.flex-2-item:not(:nth-child(2n)) {
    margin-right: 1%;
}

.flex-3-item:not(:nth-child(3n)) {
    margin-right: 1%;
}



.flex-4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-4-item {
    width: 24.8%;
    margin-bottom: 20px;
}

.flex-4-item:not(:nth-child(4n)) {
    margin-right: 0.2%;
}

.flex-4-item-1 {
    width: 24%;
    margin-bottom: 20px;
}

.flex-4-item-1:not(:nth-child(4n)) {
    margin-right: 1%;
}

.flex-4-item-2 {
    width: 23%;
    margin-bottom: 20px;
}

.flex-4-item-2:not(:nth-child(4n)) {
    margin-right: 2.6%;
}


/* 通用float布局 */

.float-left-40 {
    width: 40%;
    float: left;
}

.float-right-60 {
    width: 60%;
    float: right;
}

.float-left-49 {
    width: 49%;
    float: left;
}

.float-right-49 {
    width: 49%;
    float: right;
}

.float-left-50 {
    width: 49.9%;
    float: left;
}

.float-right-50 {
    width: 49.9%;
    float: right;
}


/* 全局更多 */

.more a {
    display: inline-block;
    width: 150px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    background-color: #045899;
    border-radius: 20px;
}

.more a img {
    margin-left: 20px;
}

@-webkit-keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-5px);
    }
}

@keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.keydown img {
    -webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
    animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}

.keydown p {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}
#outerdiv {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 200;
}
.broadside {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.broadsides {
    position: relative;
    text-align: right;
  margin-top: 20px;
}

.broadsides span {
    background-color: #808080;
    color: #fff;
    padding: 10px 20px;
}

.broadsides1 {
    display: none;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.broadsidesHover {
    display: none;
}

.broadsides:hover .broadsides1 {
  display: inline-block;
    opacity: 1;
    transition: 0.5s all ease;
}

.broadsides:hover .broadsidesImg {
    display: none;
}

.broadsides:hover .broadsidesHover {
    display: inline-block;
}
.inAbout-about-img{
    height: 434px;
}